home *** CD-ROM | disk | FTP | other *** search
Borland Project Group | 1999-03-12 | 1.1 KB | 34 lines |
- #------------------------------------------------------------------------------
- VERSION = BWS.01
- #------------------------------------------------------------------------------
- !ifndef ROOT
- ROOT = $(MAKEDIR)\..
- !endif
- #------------------------------------------------------------------------------
- MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
- DCC = $(ROOT)\bin\dcc32.exe $**
- BRCC = $(ROOT)\bin\brcc32.exe $**
- #------------------------------------------------------------------------------
- PROJECTS = AutomationServer1.exe AutomationServer2.exe AutomationClient1.exe \
- AutomationClient1B.exe AutomationClient2.exe
- #------------------------------------------------------------------------------
- default: $(PROJECTS)
- #------------------------------------------------------------------------------
-
- AutomationServer2.exe: AutomationServer2.dpr
- $(DCC)
-
- AutomationClient2.exe: AutomationClient2.dpr
- $(DCC)
-
- AutomationClient1.exe: AutomationClient1.dpr
- $(DCC)
-
- AutomationServer1.exe: AutomationServer1.dpr
- $(DCC)
-
- AutomationClient1B.exe: AutomationClient1B.dpr
- $(DCC)
-
-
-